home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / int16.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  11KB  |  228 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: int16.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The INT16 class is used to represent 16 bit signed integers
  32. independently of the operating system or hardware platform used.
  33. It works by separating 16-bit values into two separate byte
  34. values and reordering the bytes lowest-order to highest-order.
  35. An INT16 type has a base 10 positive limit of 32,767 and a
  36. negative limit of 32,768.
  37. */
  38. // ----------------------------------------------------------- //   
  39. #ifndef __INT16_HPP
  40. #define __INT16_HPP
  41.  
  42. #include "dtypes.h"
  43.  
  44. // Data structure for signed 16 bit integer values.
  45. class INT16
  46. {
  47. public:
  48.   INT16(__SWORD__ val = 0);
  49.   INT16(const INT16& ob);
  50.   INT16& operator=(const INT16& ob);
  51.   INT16& operator=(const __SWORD__ ob);
  52.  
  53. public:
  54.   void UnPackBits(__SWORD__ val);
  55.   __SWORD__ PackBits() const;
  56.  
  57. public:
  58.   operator __SWORD__() const;
  59.   
  60. public: // Arithmetic operators that modify their operand
  61.   INT16 operator++(int);  // Postfix
  62.   INT16 operator--(int);  // Postfix
  63.   INT16 &operator++() { operator=(*this + 1); return *this; } // Prefix
  64.   INT16 &operator--() { operator=(*this - 1); return *this; } // Prefix
  65.   void operator+=(const INT16 &i) { operator=(*this + i); }
  66.   void operator-=(const INT16 &i) { operator=(*this - i); }
  67.   void operator*=(const INT16 &i) { operator=(*this * i); }
  68.   void operator/=(const INT16 &i);
  69.  
  70.   void operator+=(const __LWORD__ &i) { operator=(*this + i); }
  71.   void operator-=(const __LWORD__ &i) { operator=(*this - i); }
  72.   void operator*=(const __LWORD__ &i) { operator=(*this * i); }
  73.   void operator/=(const __LWORD__ &i);
  74.  
  75.   void operator+=(const __ULWORD__ &i) { operator=(*this + i); }
  76.   void operator-=(const __ULWORD__ &i) { operator=(*this - i); }
  77.   void operator*=(const __ULWORD__ &i) { operator=(*this * i); }
  78.   void operator/=(const __ULWORD__ &i);
  79.  
  80.   void operator+=(const __WORD__ &i) { operator=(*this + i); }
  81.   void operator-=(const __WORD__ &i) { operator=(*this - i); }
  82.   void operator*=(const __WORD__ &i) { operator=(*this * i); }
  83.   void operator/=(const __WORD__ &i);
  84.  
  85.   void operator+=(const __SWORD__ &i) { operator=(*this + i); }
  86.   void operator-=(const __SWORD__ &i) { operator=(*this - i); }
  87.   void operator*=(const __SWORD__ &i) { operator=(*this * i); }
  88.   void operator/=(const __SWORD__ &i);
  89.  
  90.   void operator+=(const __UWORD__ &i) { operator=(*this + i); }
  91.   void operator-=(const __UWORD__ &i) { operator=(*this - i); }
  92.   void operator*=(const __UWORD__ &i) { operator=(*this * i); }
  93.   void operator/=(const __UWORD__ &i);
  94.  
  95.   void operator+=(const __USWORD__ &i) { operator=(*this + i); }
  96.   void operator-=(const __USWORD__ &i) { operator=(*this - i); }
  97.   void operator*=(const __USWORD__ &i) { operator=(*this * i); }
  98.   void operator/=(const __USWORD__ &i);
  99.  
  100.   void operator+=(const __SBYTE__ &i) { operator=(*this + (__SWORD__)i); }
  101.   void operator-=(const __SBYTE__ &i) { operator=(*this - (__SWORD__)i); }
  102.   void operator*=(const __SBYTE__ &i) { operator=(*this * (__SWORD__)i); }
  103.   void operator/=(const __SBYTE__ &i);
  104.  
  105.   void operator+=(const __UBYTE__ &i) { operator=(*this + (__SWORD__)i); }
  106.   void operator-=(const __UBYTE__ &i) { operator=(*this - (__SWORD__)i); }
  107.   void operator*=(const __UBYTE__ &i) { operator=(*this * (__SWORD__)i); }
  108.   void operator/=(const __UBYTE__ &i);
  109.  
  110. public: // Comparison operators
  111.   friend int operator==(const INT16 &a, const INT16 &b);
  112.   friend int operator==(const INT16 &a, const __LWORD__ &bs);
  113.   friend int operator==(const __LWORD__ &as, const INT16 &b);
  114.   friend int operator==(const INT16 &a, const __ULWORD__ &bs);
  115.   friend int operator==(const __ULWORD__ &as, const INT16 &b);
  116.   friend int operator==(const INT16 &a, const __WORD__ &bs);
  117.   friend int operator==(const __WORD__ &as, const INT16 &b);
  118.   friend int operator==(const INT16 &a, const __SWORD__ &bs);
  119.   friend int operator==(const __SWORD__ &as, const INT16 &b);
  120.   friend int operator==(const INT16 &a, const __UWORD__ &bs);
  121.   friend int operator==(const __UWORD__ &as, const INT16 &b);
  122.   friend int operator==(const INT16 &a, const __USWORD__ &bs);
  123.   friend int operator==(const __USWORD__ &as, const INT16 &b);
  124.   friend int operator==(const INT16 &a, const __SBYTE__ &bs);
  125.   friend int operator==(const __SBYTE__ &as, const INT16 &b);
  126.   friend int operator==(const INT16 &a, const __UBYTE__ &bs);
  127.   friend int operator==(const __UBYTE__ &as, const INT16 &b);
  128.  
  129.   friend int operator!=(const INT16 &a, const INT16 &b);
  130.   friend int operator!=(const INT16 &a, const __LWORD__ &bs);
  131.   friend int operator!=(const __LWORD__ &as, const INT16 &b);
  132.   friend int operator!=(const INT16 &a, const __ULWORD__ &bs);
  133.   friend int operator!=(const __ULWORD__ &as, const INT16 &b);
  134.   friend int operator!=(const INT16 &a, const __WORD__ &bs);
  135.   friend int operator!=(const __WORD__ &as, const INT16 &b);
  136.   friend int operator!=(const INT16 &a, const __SWORD__ &bs);
  137.   friend int operator!=(const __SWORD__ &as, const INT16 &b);
  138.   friend int operator!=(const INT16 &a, const __UWORD__ &bs);
  139.   friend int operator!=(const __UWORD__ &as, const INT16 &b);
  140.   friend int operator!=(const INT16 &a, const __USWORD__ &bs);
  141.   friend int operator!=(const __USWORD__ &as, const INT16 &b);
  142.   friend int operator!=(const INT16 &a, const __SBYTE__ &bs);
  143.   friend int operator!=(const __SBYTE__ &as, const INT16 &b);
  144.   friend int operator!=(const INT16 &a, const __UBYTE__ &bs);
  145.   friend int operator!=(const __UBYTE__ &as, const INT16 &b);
  146.  
  147.   friend int operator<(const INT16 &a, const INT16 &b);
  148.   friend int operator<(const INT16 &a, const __LWORD__ &bs);
  149.   friend int operator<(const __LWORD__ &as, const INT16 &b);
  150.   friend int operator<(const INT16 &a, const __ULWORD__ &bs);
  151.   friend int operator<(const __ULWORD__ &as, const INT16 &b);
  152.   friend int operator<(const INT16 &a, const __WORD__ &bs);
  153.   friend int operator<(const __WORD__ &as, const INT16 &b);
  154.   friend int operator<(const INT16 &a, const __SWORD__ &bs);
  155.   friend int operator<(const __SWORD__ &as, const INT16 &b);
  156.   friend int operator<(const INT16 &a, const __UWORD__ &bs);
  157.   friend int operator<(const __UWORD__ &as, const INT16 &b);
  158.   friend int operator<(const INT16 &a, const __USWORD__ &bs);
  159.   friend int operator<(const __USWORD__ &as, const INT16 &b);
  160.   friend int operator<(const INT16 &a, const __SBYTE__ &bs);
  161.   friend int operator<(const __SBYTE__ &as, const INT16 &b);
  162.   friend int operator<(const INT16 &a, const __UBYTE__ &bs);
  163.   friend int operator<(const __UBYTE__ &as, const INT16 &b);
  164.  
  165.   friend int operator>(const INT16 &a, const INT16 &b);
  166.   friend int operator>(const INT16 &a, const __LWORD__ &bs);
  167.   friend int operator>(const __LWORD__ &as, const INT16 &b);
  168.   friend